home *** CD-ROM | disk | FTP | other *** search
- // Employee.h
- //
- // Created on Fri Jan 13 15:56:20 PST 1995 by NeXT EOModeler.app Version 71
- /*
- modified by enoyau
-
- You may freely copy, distribute, and reuse the code in this example.
- NeXT disclaims any warranty of any kind, expressed or implied, as to its
- fitness for any particular use.
- */
-
- #import <eoaccess/eoaccess.h>
-
- @interface Employee : NSObject
- {
- NSString *address;
- NSString *city;
- int dept_id;
- int emp_id;
- NSString *first_name;
- NSCalendarDate *hire_date;
- NSString *last_name;
- int manager;
- NSString *phone;
- double salary;
- NSString *state;
- int title_id;
- NSString *zip;
- id toJob_Title;
- id toEmp_Photo;
- NSData *photo;
- NSString *lock;
- }
-
- + (void)setLocalLockString:(NSString *)lockString;
- - (NSString *)lock;
- - (BOOL)isEditable;
- - (BOOL)isLocked;
- - lockImage;
-
- @end
-